home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / blkspell / borlxapp.h < prev    next >
C/C++ Source or Header  |  1998-09-19  |  1KB  |  58 lines

  1. //----------------------------------------------------------------------------
  2. //  Project Borl_ex
  3. //  BlockTeq Software
  4. //  Copyright ⌐ 1998. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    Borl_ex Application
  7. //  FILE:         borlxapp.h
  8. //  AUTHOR:       D.R.Block
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Class definition for TBorl_exApp (TApplication).
  13. //
  14. //----------------------------------------------------------------------------
  15. #if !defined(borlxapp_h)              // Sentry, use file only if it's not already included.
  16. #define borlxapp_h
  17.  
  18. #include <owl/opensave.h>
  19.  
  20.  
  21. #include "borlxapp.rh"            // Definition of all resources.
  22.  
  23.  
  24. //
  25. // FrameWindow must be derived to override Paint for Preview and Print.
  26. //
  27. //{{TDecoratedFrame = TSDIDecFrame}}
  28. class TSDIDecFrame : public TDecoratedFrame {
  29.   public:
  30.     TSDIDecFrame(TWindow* parent, const char far* title, TWindow* clientWnd, bool trackMenuSelection = false, TModule* module = 0);
  31.     ~TSDIDecFrame();
  32. };    //{{TSDIDecFrame}}
  33.  
  34.  
  35. //{{TApplication = TBorl_exApp}}
  36. class TBorl_exApp : public TApplication {
  37.   private:
  38.  
  39.  
  40.   public:
  41.     TBorl_exApp();
  42.     virtual ~TBorl_exApp();
  43.  
  44. //{{TBorl_exAppVIRTUAL_BEGIN}}
  45.   public:
  46.     virtual void InitMainWindow();
  47. //{{TBorl_exAppVIRTUAL_END}}
  48.  
  49. //{{TBorl_exAppRSP_TBL_BEGIN}}
  50.   protected:
  51.     void CmHelpAbout();
  52. //{{TBorl_exAppRSP_TBL_END}}
  53. DECLARE_RESPONSE_TABLE(TBorl_exApp);
  54. };    //{{TBorl_exApp}}
  55.  
  56.  
  57. #endif  // borlxapp_h sentry.
  58.